home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 262_01.zip / SYMDEF.H < prev    next >
Text File  |  1993-04-14  |  768b  |  16 lines

  1. /****************************************************************
  2.  *      Definitions for Symbol Table Manipulation Package       *
  3.  *                                                              *
  4.  *                    by Robert Ramey                           *
  5.  *                    8  August  1986                           *
  6.  ****************************************************************/
  7.  
  8. typedef struct _symtbl {    /*structure for symbol table data */
  9.     int _element_size; /*size of data not includeing links nor*/
  10.               /*symbol itself */
  11.     int _hash_factor; /*number of chains of symbols */
  12.     int *_hash_address[1]; /*address of start of chain */
  13. } SYMBOLTABLE;
  14.  
  15. typedef char SYMBOLENTRY;
  16.    by Robert Ramey